home *** CD-ROM | disk | FTP | other *** search
/ Java Primer Plus / Java Primer Plus (Waite Group Proess)(1996).iso / chapter9 / brothers / Dad.class (.txt) next >
Encoding:
Java Class File  |  1995-12-31  |  504 b   |  14 lines

  1. package brothers;
  2.  
  3. class Dad {
  4.    private boolean sportscar = true;
  5.    boolean fishing_boat = true;
  6.    protected boolean golf_clubs = true;
  7.    public boolean lawnmower = true;
  8.    protected private boolean familycar = true;
  9.    public protected boolean pubprot = true;
  10.  
  11.    public Dad() {
  12.    }
  13. }
  14.